projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3aa2de6
)
[IA64] make efi_print()'s output more readable
author
awilliam@xenbuild.aw
<awilliam@xenbuild.aw>
Mon, 9 Oct 2006 00:21:32 +0000
(18:21 -0600)
committer
awilliam@xenbuild.aw
<awilliam@xenbuild.aw>
Mon, 9 Oct 2006 00:21:32 +0000
(18:21 -0600)
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
xen/arch/ia64/xen/xensetup.c
patch
|
blob
|
history
diff --git
a/xen/arch/ia64/xen/xensetup.c
b/xen/arch/ia64/xen/xensetup.c
index 87eea5be56ef761d91e3d2d8e39cd3987810ef42..5a8ee914dd0380a81abdef68337a4998898c0f31 100644
(file)
--- a/
xen/arch/ia64/xen/xensetup.c
+++ b/
xen/arch/ia64/xen/xensetup.c
@@
-186,8
+186,8
@@
efi_print(void)
for (i = 0, p = efi_map_start; p < efi_map_end; ++i, p += efi_desc_size) {
md = p;
- printk("mem%02u: type=%
u, attr=0x%lx, range=[0x%016lx-0x%016lx) (%luMB)\n",
- i, md->type, md->attribute, md->phys_addr,
+ printk("mem%02u: type=%
2u, attr=0x%016lx, range=[0x%016lx-0x%016lx) "
+
"(%luMB)\n",
i, md->type, md->attribute, md->phys_addr,
md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT),
md->num_pages >> (20 - EFI_PAGE_SHIFT));
}